home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjapplt.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  772 b   |  28 lines

  1. #ifndef _DTJAPPLT_HPP
  2. #define _DTJAPPLT_HPP
  3.  
  4. #include "dtjpanel.hpp"
  5.  
  6. class METAEXPORTCLASSDEF DTJApplet : public DTJPanel 
  7. {
  8.     public:
  9.         DTJApplet( const MetaObject * pMetaObj );
  10.         virtual ~DTJApplet();
  11.         
  12.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  13.                    ostream& src,
  14.                    MMCodeGenerationParms& pGenParms );
  15.  
  16.     protected:
  17.     virtual void GenerateConstructor( ostream& src,
  18.                    MMJCodeGenerationParms* pGenParms ) const;
  19.         virtual void GenerateDestroy( ostream& src,
  20.                       MMJCodeGenerationParms* pGenParms ) const;
  21. };
  22.  
  23. // needed for mdreader
  24. typedef DTJApplet DTjava__dot__applet__dot__Applet__dot__102;
  25. typedef WForm     java__dot__applet__dot__Applet__dot__102;
  26.  
  27. #endif // _DTJAPPLT_HPP
  28.